home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
PROGNG_C
/
CUG187.LZH
/
CONOUT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1985-12-30
|
715b
|
19 lines
/*@*****************************************************/
/*@ */
/*@ conout - output a string to the screen using */
/*@ DeSmet interrupt 10 routine. Only */
/*@ exists to allow quick modification. */
/*@ */
/*@ Usage: conout(string, attribute); */
/*@ where attribute defined in IBM Tech Manual. */
/*@ (copout till I find my list). */
/*@ */
/*@*****************************************************/
conout(s,attr)
char *s;
int attr;
{
scr_aputs(s,attr);
}